b99ea0af8aca0a5cca88559e673cda6cfa955184,maven-plugins/maven-javadoc-plugin/src/main/java/org/apache/maven/plugin/javadoc/JavadocReport.java,JavadocReport,executeReport,#Locale#,583

Before Change


            addArgIfNotEmpty( arguments, "-group", quotedArgument( group ), true );
            addArgIfNotEmpty( arguments, "-header", quotedArgument( header ) );
            addArgIfNotEmpty( arguments, "-helpfile", quotedPathArgument( helpfile ) );
            addArgIfNotEmpty( arguments, "-link", quotedPathArgument( link ), true );
            addArgIfNotEmpty( arguments, "-linkoffline", quotedPathArgument( linkoffline ), true );
            addArgIf( arguments, linksource, "-linksource", 1.4f );
            addArgIf( arguments, nodeprecated, "-nodeprecated" );

After Change


            addArgIfNotEmpty( arguments, "-header", quotedArgument( header ) );
            addArgIfNotEmpty( arguments, "-helpfile", quotedPathArgument( helpfile ) );
            
            if ( !isOffline )
            {
                addArgIfNotEmpty( arguments, "-link", quotedPathArgument( link ), true );
                addArgIfNotEmpty( arguments, "-linkoffline", quotedPathArgument( linkoffline ), true );
                addArgIf( arguments, linksource, "-linksource", 1.4f );
            }